home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 5_programming / on / oper_notice < prev    next >
Encoding:
Text File  |  2001-03-21  |  404 b   |  21 lines

  1. Synopsis:
  2.    on [<modes>]oper_notice [<serial#>] [-|^]<match> { <action> }
  3.  
  4. Description:
  5.    This is triggered whenever a global oper notice is received.
  6.  
  7. Parameters:
  8.    $0    server the notice came from
  9.    $1-   body of the message
  10.  
  11. Examples:
  12.    To alert the user of global oper notices:
  13.    on ^oper_notice "*" {
  14.      beep
  15.      echo --global notice-- $1-
  16.    }
  17.  
  18. See Also:
  19.    on(5) notice
  20.  
  21.